home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / EZDSL200.ZIP / EZDSLCTS.RC < prev    next >
Encoding:
Text File  |  1996-03-13  |  2.1 KB  |  38 lines

  1. #include "ezdslcts.pas"
  2.  
  3. STRINGTABLE
  4. BEGIN
  5.   escTooManyItems,   "Container has maximum number of items already"
  6.   escInsInvalidHere, "Cannot insert at this node"
  7.   escDelInvalidHere, "Cannot delete this node"
  8.   escInsertDup,      "Tried to insert duplicate data: container specifies no dups"
  9.   escTreeStackError, "Stack problem with pre/in/postorder traversal"
  10.   escTreeQueueError, "Queue problem with levelorder traversal"
  11.   escCannotMoveHere, "Tried to move outside the container's boundary"
  12.   escIncompatible,   "Tried to join two containers with different sized nodes"
  13.   escNoCompare,      "No Compare function supplied"
  14.   escNoDupData,      "No DupData function supplied"
  15.   escNoDisposeData,  "No DisposeData function supplied"
  16.   escBadSource,      "Incompatible source for Clone operation"
  17.   escIndexError,     "Index out of range for collection"
  18.  
  19.   ascFreeNilNode,    "Attempt to free a nil Node"
  20.   ascNewNodeSize0,   "Attempt to allocate node of zero size"
  21.   ascFreeNodeSize0,  "Attempt to free node of zero size"
  22.   ascEmptyExamine,   "The container is empty, cannot examine node"
  23.   ascEmptyPop,       "Cannot pop from an empty stack or queue"
  24.   ascDeleteEdges,    "Cannot delete from list's BeforeFirst or AfterLast positions"
  25.   ascExamineEdges,   "Cannot examine data at list's BeforeFirst or AfterLast positions"
  26.   ascInsertEdges,    "Cannot InsertBefore at list's BeforeFirst position, or InsertAfter at AfterLast"
  27.   ascReplaceEdges,   "Cannot replace at list's BeforeFirst or AfterLast positions"
  28.   ascAlreadyAtEnd,   "Already at AfterLast position, Next has no effect"
  29.   ascAlreadyAtStart, "Already at BeforeFirst position, Prev has no effect"
  30.   ascCannotJoinHere, "Cannot join another container here"
  31.   ascCannotJoinData, "Cannot join a data owner to a non-data owner container, and vice versa"
  32.   ascSplitEdges,     "Cannot split a list at its BeforeFirst or AfterLast positions"
  33.   ascoutOfRange,     "Index is out of the range 0 to (Count-1)"
  34.   ascExamineLeaf,    "Cannot examine the data in a leaf, it's a nil pointer"
  35.   ascBadSkipLevel,   "The skip level is not between 1 and skMaxLevels"
  36. END
  37.  
  38.